Intersoft ClientUI Documentation
Deserialize<T>(String) Method



The type of the target object.
The JSON string to deserialize.
Deserialize the specified JSON string to an object.
Syntax
Public Overloads Shared Function Deserialize(Of T)( _
   ByVal jsonString As String _
) As T
Dim jsonString As String
Dim value As T
 
value = JsonSerializer.Deserialize(Of T)(jsonString)
public static T Deserialize<T>( 
   string jsonString
)
public:
static T^ Deserializegeneric<typename T>
( 
   String^ jsonString
) 

Parameters

jsonString
The JSON string to deserialize.

Type Parameters

T
The type of the target object.

Return Value

An object as the result of deserialization.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

JsonSerializer Class
JsonSerializer Members
Overload List

Send Feedback